home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / doom / spawn01.zip / SPAWN01.TXT < prev   
Text File  |  1996-04-22  |  8KB  |  339 lines

  1. HEXEN Thing Projectile/Spawn V 1.0  - Apr 15, 1996
  2.     74073.3117@compuserve.com
  3.     claudec@wwa.com (Claude Canning)
  4.  
  5. These were used in the original scripts for
  6. Thing_Spawn
  7.  
  8. T_FIREGARGOYLE
  9. T_ETTIN
  10. T_BRIDGE
  11. T_ITEMHEALTHFLASK
  12. T_MANA3
  13. T_MANA2
  14. T_MANA1
  15. T_ICEGOLEM
  16. T_CENTAUR
  17. T_WATERDRIP
  18. T_ITEMREPULSION
  19. T_MANA3
  20. T_DEMON
  21. T_BISHOP
  22. T_CENTAURLEADER
  23. T_ITEMSUMMON
  24. T_ITEMBOOSTMANA
  25. T_ITEMHEALTHFULL
  26. ----
  27. * syntax references copied from 
  28.  "The Official Hexen Technical Specs" by Ben Morris (bmorris@islandnet.com)
  29.  
  30. * 134:Thing_Projectile / tid / type / angle / speed / vspeed
  31.     tid:        TID of spawn location
  32.         type:       Type of thing to spawn (see spawnable things)
  33.     angle:        byte angle of projectile
  34.     speed:        speed of projectile
  35.     vspeed:        vertical speed
  36.  
  37.        Spawns a projectile.
  38.  
  39. * 136:Thing_ProjectileGravity / tid / type / angle / speed / vspeed
  40.     tid:        TID of spawn location
  41.         type:       Type of thing to spawn (see spawnable things)
  42.     angle:        byte angle of projectile
  43.     speed:        speed of projectile
  44.     vspeed:        vertical speed
  45.  
  46. * 135:Thing_Spawn / tid / type / angle / arg4 / arg5
  47.     tid:        TID of spawn location
  48.         type:       Type of thing to spawn (see spawnable things)
  49.     angle:        byte angle of thing to face
  50.  
  51.        Spawns a thing.
  52.  
  53. * 137:Thing_SpawnNoFog / tid / type / angle / arg4 / arg5
  54.     tid:        TID of spawn location
  55.         type:       Type of thing to spawn (see spawnable things)
  56.     angle:        byte angle of projectile
  57.  
  58.         Spawns a thing silently.
  59. ---------
  60. ******* NEAT TRICK **************
  61. If you want to have pigs in your level
  62. use Thing_Projectile to shoot a 126 (dark servant)
  63. then use Thing_Projectile to shoot a 40 (porkulator bomb)
  64. at the forming Dark Servant. The two critical factors are
  65. Timing and Distance. Timing is amount of delay
  66. between shots. Distance is between tid that shoots porkulator
  67. and spot where Dark Servant is forming.  These two factors
  68. will determine whether it works or not.  These two factors
  69. also control whether you get visible or invisble pigs.
  70. An example of this is found in pigpenb.zip on compuserve
  71. in the action gamers forum HOT:HERETIC/HEXEN lib
  72.  
  73. Here is the pig code from pigpenb
  74. script 100 OPEN
  75. {
  76.  Thing_Projectile(19, 126, 64, 50,0);
  77.  delay(10);
  78.  Thing_Projectile(18, 40, 192, 50,0);
  79. }
  80.  
  81. Projectile are fired at a point between tid 19 and 20
  82. *********************************
  83.  
  84. These Where found by brute force.  I tried each of the following
  85. numbers as the type argument to Thing_Projectile. I also tried the
  86. first 20 as the type argument in Thing_Spawn and had the same results.
  87. Some of these (the ordnance) do not make sense to use in Thing_Spawn
  88. but they still will appear (at least the fire ball does, and it will
  89. not hurt you when you run through it. Makes a nice torch see pigpenb
  90. mentioned above for an example to be found in the throne room)
  91.  
  92. (ORD) means it is ordnance AKA it can hurt you.
  93.  
  94.  0  Nothing
  95.  1  Centaurs
  96.  2  Slaughtaurs
  97.  3  Green Chaos Serpent
  98.  4  Ettin
  99.  5  Affrit
  100.  6  Water Lurker
  101.  7  Water Lurker Leader
  102.  8  Reiver
  103.  9  Reiver
  104. 10 Fire Ball  (Ord)
  105. 11 Blue Mana
  106. 12 Green Mana
  107. 13 Boots of Speed
  108. 14 Porkulator
  109. 15 Wings of Wrath
  110. 16 Dark Servant
  111. 17 Banishment Device
  112. 18 Chaos Device
  113. 19 Dark Bishop
  114. 20 Wendigo
  115. 21 Sparkle Bridge
  116. 22 Dragon Skin Bracers
  117. 23 Crystal Vial 
  118. 24 Quartz Flask
  119. 25 Enchanted Sheild
  120. 26 Krater of Might
  121. 27 Timon's Axe
  122. 28 Hammer of Retribution
  123. 29 Segment of Quietus (Blade)
  124. 30 Segment of Quietus (Handle Gaurd)
  125. 31 Segment of Quietus (Handle)
  126. 32 Serpent Staff
  127. 33 Segment Wraithverge
  128. 34 Segment Wraithverge
  129. 35 Segment Wraithverge
  130. 36 Frost Shards
  131. 37 Segment of Blood Scourge (Skull Handle)
  132. 38 Same as 37
  133. 39 Same as 37
  134. 40 Fire Porkulator Bomb (ORD) (used in pig making)
  135. 41 Big Rock
  136. 42 Meduin Rock
  137. 43 Small Rock
  138. 44 Brown Rock
  139. 45 Small Browm Rock
  140. 46 Real Small Browm Rock
  141. 47 Rocks
  142. 48 Rocks
  143. 49 Rocks
  144. 50 Arrow (ORD)
  145. 51 Poison Dart (ORD)
  146. 52 Poison Dart (ORD)
  147. 53 Ripper Ball (ORD)
  148. 54 Blue Glass Shard
  149. 55 Yellow Glass Shard
  150. 56 Purple Glass Shard
  151. 57 Green Glass Shard
  152. 58 Orange Glass Shard
  153. 59 Small Blue Glass Shard
  154. 60 Small Yellow Glass Shard
  155. 61 Small Orange Glass Shard
  156. 62 Small Purple Glass Shard
  157. 63 Small Green Glass Shard
  158. 64 Blade (ORD)
  159. 65 Ice Shard (ORD)
  160. 66 small Flame
  161. 67 Big Flame
  162. 68 Mesh Armor
  163. 69 Falcon Sheild
  164. 70 Platinum Helmet
  165. 71 Amulet of Warding
  166. 72 Flechette
  167. 73 Torch
  168. 74 Disk Repulsion (?) Came up as chaos
  169. 75 Combined Mana
  170. 76 Yorick's Skull
  171. 77 Heart of D'Spiral
  172. 78 Ruby Planet
  173. 79 Emerald Planet
  174. 80 Emerald Planet
  175. 81 Sapphire Planet
  176. 82 Sapphire Planet
  177. 83 Daemon Codex
  178. 84 Liber Oscura
  179. 85 Steel Key
  180. 86 Cave Key
  181. 87 Axe Key
  182. 88 Fire Key
  183. 89 Emerald Key
  184. 90 Dungeon Key
  185. 91 Silver Key
  186. 92 Rusted Key
  187. 93 Horn Key
  188. 94 Swamp Key
  189. 95 Water Drop
  190. 96 Small Flame
  191. 97 Small Flame
  192. 98 Real Small Flame
  193. 99 Real Small Flame
  194. * The various ghost monsters dissapear when killed leaving no remains
  195. * They are also easy to kill
  196. 100 Ghost Green Chaos Serpent
  197. 101 Ghost Brown Chaos Serpent
  198. 102 Ghost Ettin
  199. 103 Ghost Centaurs
  200. 104 Big Spike (up)
  201. 105 Big Spike (Down)
  202. 106 Brown Bit
  203. 107 Yellow Bit
  204. 108 unknown
  205. 109 Blue Mana (cannot be picked up)
  206. 110 Crashes System
  207. 111 unknown
  208. 112 Blue Mana (cannot be picked up)
  209. 113 Blue Mana (cannot be picked up)
  210. 114 CRASH
  211. 115 Blue Mana (cannot be picked up)
  212. 116 Blue Mana (cannot be picked up)
  213. 117 Blue Mana (cannot be picked up)
  214. 118 CRASH
  215. 119 Blue Mana (cannot be picked up)
  216. 120 Blue Mana (cannot be picked up)
  217. 121 Blue Mana (cannot be picked up)
  218. 122 CRASH
  219. 123 Blue Mana
  220. 124 Blue Mana (cannot be picked up)
  221. 125 Spike Down
  222. 126 Dark Servant (ORD) (used in pig making)
  223. 127 Icon Defender
  224. 128 Nothing
  225. 129 Arrow
  226. 130 Nothing
  227. 131 Fire Ball
  228. 132 Nothing
  229. 133 Arrow
  230. 134 Nothing
  231. 135 Fire Ball
  232. 136 Nothing
  233. 137 Arrow
  234. 138 Nothing
  235. 139 Fire Ball
  236. 140 Nothing
  237. 141 Nothing
  238. 142 Nothing
  239. 143 Nothing
  240. 144 Nothing
  241. 145 Nothing
  242. 146 Nothing
  243. 147 Fire Ball
  244. 148 Nothing
  245. 149 Nothing
  246. 150 Nothing
  247. 151 Nothing
  248. 152 Nothing
  249. 153 Arrow
  250. 154 Nothing
  251. 155 Arrow
  252. 156 Nothing
  253. 157 Nothing
  254. 158 Nothing
  255. 159 Nothing
  256. 160 Nothing
  257. 161 Fire Ball
  258. 162 Nothing
  259. 163 Arrow
  260. 164 Nothing
  261. 165 Fire Ball
  262. 166 Nothing
  263. 167 Arrow
  264. 168 Nothing
  265. 169 Fire Ball
  266. 170 Nothing
  267. 171 Arrow
  268. 172 Nothing
  269. 173 Nothing
  270. 174 Nothing
  271. 175 Nothing
  272. 176 Nothing
  273. 177 Weird Green Clam Looking Thing (Anybody know what this thing is email me)
  274. 178 Disk Rep (looks like blast from disk of repulsion. Drops to floor and
  275.     will kick you out if picked up)
  276. 179 Green Clam 
  277. 180 Disk Rep
  278. 181 Green Clam
  279. 182 Green Clam
  280. 183 Disk Rep
  281. 184 Green Clam
  282. 185 Green Clam
  283. 186 Green Clam
  284. 187 Green Clam
  285. 188 Green Clam
  286. 189 Green Clam
  287. 190 Disk Rep
  288. 191 Green Clam
  289. 192 Green Clam
  290. 193 Green Clam
  291. 194 Disk Rep
  292. 195 Disk Rep
  293. 196 Disk Rep
  294. 197 Disk Rep
  295. 198 Green Clam
  296. 199 Disk Rep
  297. 200 Disk Rep
  298. 201 Green Clam
  299. 202 Green Clam
  300. 203 Green Clam
  301. 204 Green Clam
  302. 205 Disk Rep
  303. 206 Green Clam
  304. 207 Disk Rep
  305. 208 Green Clam
  306. 209 Green Clam
  307. 210 Disk Rep
  308. 211 Disk Rep
  309. 212 Green Clam
  310. 213 Green Clam
  311. 214 Disk Rep
  312. 215 Disk Rep
  313. 216 Disk Rep
  314. 217 Disk Rep
  315. 218 Green Clam
  316. 219 Green Clam
  317. 220 Green Clam
  318. 221 Green Clam
  319. 222 Disk Rep
  320. 223 Green Clam
  321. 224 Green Clam
  322. 225 Disk Rep
  323. 226 Green Clam
  324. 227 Nothing
  325. 228 CRASH
  326. 229 Kickout
  327. 230 Nothing
  328. 231 Kickout
  329. 232 Kickout
  330. 233 Kickout
  331. 234 Kickout
  332. 235 Kickout
  333. There are a few more to go anyone want to finish it?
  334. Otherwise I will get around to it sooner or later.
  335.  
  336. Any more info or corrections on this stuff email me
  337. claudec@wwa.com
  338.  
  339.